home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / formats / iff / newiff.lzh / NewIFF / NewIFF.lzh / newiff / modules / unpacker.c < prev    next >
C/C++ Source or Header  |  1992-05-18  |  2KB  |  66 lines

  1.  
  2. #include "iffp/ilbm.h"
  3. #include "iffp/packer.h"
  4.  
  5. /*----------------------------------------------------------------------*
  6.  * unpacker.c Convert data from "cmpByteRun1" run compression. 11/15/85
  7.  *
  8.  * Based on code by Jerry Morrison and Steve Shaw, Electronic Arts.
  9.  * This software is in the public domain.
  10.  *
  11.  *    control bytes:
  12.  *     [0..127]   : followed by n+1 bytes of data.
  13.  *     [-1..-127] : followed by byte to be repeated (-n)+1 times.
  14.  *     -128       : NOOP.
  15.  *
  16.  * This version for the Commodore-Amiga computer.
  17.  *----------------------------------------------------------------------*/
  18.  
  19. /*----------- UnPackRow ------------------------------------------------*/
  20.  
  21. #define UGetByte()    (*source++)
  22. #define UPutByte(c)    (*dest++ = (c))
  23.  
  24. /* Given POINTERS to POINTER variables, unpacks one row, updating the source
  25.  * and destination pointers until it produces dstBytes bytes.
  26.  */
  27.  
  28. BOOL unpackrow(BYTE **pSource, BYTE **pDest, WORD srcBytes0, WORD dstBytes0)
  29.     {
  30.     register BYTE *source = *pSource;
  31.     register BYTE *dest   = *pDest;
  32.     register WORD n;
  33.     register BYTE c;
  34.     register WORD srcBytes = srcBytes0, dstBytes = dstBytes0;
  35.     BOOL error = TRUE;    /* assume error until we make it through the loop */
  36.     WORD minus128 = -128;  /* get the compiler to generate a CMP.W */
  37.  
  38.     while( dstBytes > 0 )  {
  39.     if ( (srcBytes -= 1) < 0 )  goto ErrorExit;
  40.         n = UGetByte();
  41.  
  42.         if (n >= 0) {
  43.         n += 1;
  44.         if ( (srcBytes -= n) < 0 )  goto ErrorExit;
  45.         if ( (dstBytes -= n) < 0 )  goto ErrorExit;
  46.         do {  UPutByte(UGetByte());  } while (--n > 0);
  47.         }
  48.  
  49.         else if (n != minus128) {
  50.         n = -n + 1;
  51.         if ( (srcBytes -= 1) < 0 )  goto ErrorExit;
  52.         if ( (dstBytes -= n) < 0 )  goto ErrorExit;
  53.         c = UGetByte();
  54.         do {  UPutByte(c);  } while (--n > 0);
  55.         }
  56.     }
  57.     error = FALSE;    /* success! */
  58.  
  59.   ErrorExit:
  60.     *pSource = source;  *pDest = dest;
  61.     return(error);
  62.     }
  63.  
  64.  
  65. /* end */
  66.